home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_11.lha / 5_11 / 5_10a2.c < prev    next >
Text File  |  1993-08-08  |  512b  |  22 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  6. * The C++ Answer Book */
  7. * Tony Hansen */
  8. * All rights reserved. */
  9. / construct a symbol table
  10. include <table.h>
  11. include <error.h>
  12.  
  13. able::table(int sz)
  14.  
  15.    if (sz <= 0)
  16.        error("non-positive table size");
  17.  
  18.    tbl = new name*[size = sz];
  19.    for (int i = 0; i < sz; i++)
  20.        tbl[i] = 0;
  21.  
  22.